home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
demos
/
REALITY
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-08-01
|
168b
|
11 lines
SHELL=/bin/sh
SUBDIRS= *
all .DEFAULT:
for d in ${SUBDIRS}; do \
if [ -d $$d ]; then \
echo "======\tcd $$d; ${MAKE} $@"; \
(cd $$d; ${MAKE} $@); \
fi \
done